home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ AOL Tray Icon.xpl < prev    next >
Text File  |  2002-02-12  |  1KB  |  39 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Program Options\America Online"
  5. "NAME"="AOL Tray Icon Startup Option"
  6. "VERSION"="1.00"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Show AOL Tray Icon"
  9. "DESCRIPTION 1"="Enables or disables the displaying of the AOL icon in the system tray, which is usually to the right of the taskbar area. Note that you should remove "AOL Tray Icon" from your Startup Group as well if you wish to unload it from memory.  Otherwise it simply will load and not show the tray icon (which is a pointless waste of resources).  This procedure can be easily accomplished through X-Setup or manually."
  10. "DESCRIPTION 2"="This was tested with AOL 7.0 but may work with other versions as well."
  11. "AUTHOR"="CptSiskoX (Xteq Systems)"
  12. "CONTACTURL"="www.xteq.com"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"="For X-Setup program information, go to http://www.xteq.com."
  15.  
  16. sP="HKLM\SOFTWARE\America Online\America Online\CurrentVersion\EnableTrayIcon" 'Dword 1=enable 0=disable
  17.  
  18. Sub Plugin_Initialize 
  19.   i=RegReadValue(sP)
  20.   if i=1 then SetUIElement 1,true
  21. End Sub
  22.  
  23. Sub Plugin_CheckData(ElementIndex)
  24. End Sub
  25.  
  26. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  27.   b=GetUIElement(1)
  28.  if b=true then
  29.     Call RegWriteValue(sP,1,2)
  30. else
  31.     if RegValueExists(sP) then Call RegDeleteValue(sP)
  32.  end if
  33.  
  34. End Sub
  35.  
  36. Sub Plugin_Terminate 
  37. End Sub
  38.  
  39.